home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000212_news@columbia.edu _Fri Mar 15 13:37:24 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id NAA24416 for <kermit.misc@watsun>; Fri, 15 Mar 1996 13:37:24 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id NAA22219 for kermit.misc@watsun; Fri, 15 Mar 1996 13:37:22 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: LF problem on Ckermit vax/vms and axp/vms talking to sco
  8. Date: 15 Mar 1996 18:37:10 GMT
  9. Organization: Columbia University
  10. Lines: 35
  11. Message-ID: <4icdcm$lm8@apakabar.cc.columbia.edu>
  12. References: <4ic3a7$568@cloner2.ix.netcom.com>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4ic3a7$568@cloner2.ix.netcom.com>,
  16. David Pollack  <adldata@ix.netcom.com> wrote:
  17. : I have ckermit 5a(190) running on digital vms (vax and alpha)
  18. : using a script to connect to an sco unix system.
  19. : From the vax, it works fine. the script waits for the logon 
  20. : prompt,sends the logon id, wait for the password prompt, 
  21. : sends the password, does what it needs to. This is repeatable.
  22. : From the alpha, it connects, waits for the logon script, sends 
  23. : the logon id, waits for the password prompt, never gets/sees 
  24. : it and times out. This is repeatable.
  25. I think the real problem is that one of your VMS systems is
  26. sending one or more terminal-report-query escape sequences, but
  27. the other one isn't.  You can verify this by telling C-Kermit to
  28. "set terminal debug on" and logging in manually to each one to
  29. get a graphic display of all characters received, including
  30. control characters.
  31.  
  32. The escape sequences are issued by a SET TERM/INQUIRE command
  33. in your LOGIN.COM or in the system-wide LOGIN.COM.  The exact
  34. escape sequences that are issued depend on the VMS version.
  35.  
  36. This is explained in some detail on pages 284-289 of "Using
  37. C-Kermit".  C-Kermit 5A(190) also comes with a VMSLOGIN macro to
  38. handle the situation -- it is defined in the standard CKERMIT.INI
  39. file.
  40.  
  41. If this turns out not to be the answer, then you will probably
  42. still be able to find the answer by following the examples in
  43. the book, using SET TERM DEBUG ON (or SET DEBUG SESSION -- same
  44. thing) to see what is really going on.
  45.  
  46. - Frank